home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / wb / DosMan121.lha / man / SetFont < prev    next >
Text File  |  1995-04-03  |  2KB  |  70 lines

  1.  
  2.  
  3.      SetFont (2.x/3.x in C:)
  4.  
  5.  
  6.      NAME
  7.             SetFont - Allows user to specify the text font, size, 
  8.         and style used in a particular shell window.
  9.  
  10.      SYNOPSIS
  11.             SETFONT fontname fontsize [SCALE] [PROP] [ITALIC] 
  12.         [BOLD] [UNDERLINE]
  13.  
  14.      DESCRIPTION
  15.             You can use this program to change the System Default 
  16.         Text font without using the System Font Prefrences 
  17.         program. 
  18.  
  19.      KEYWORDS
  20.  
  21.         fontname
  22.             The name of the font to install. It can be a system 
  23.         bitmapped or scalable outline font.
  24.  
  25.         fontsize
  26.             The point size of the font. A scalable outline font 
  27.         will be scaled to fit that size. If a bitmapped of that 
  28.         size does not exist then the next closest size will be 
  29.         used.
  30.  
  31.         SCALE
  32.             This enables bitmapped scaling. In other words, if 
  33.         you specify a font size that does not exist then one will 
  34.         be created from the characters of the next closest size.
  35.  
  36.         PROP
  37.             The optional keyword that lets you use proportional 
  38.         fonts. If you try to use a proportional font without this 
  39.         keyword then you will get an error message that says: 
  40.         'Object not of required type'. Warning: There are some 
  41.         proportional fonts that will not print correctly in a 
  42.         console window.
  43.  
  44.         ITALIC
  45.         Prints the font in the italic format.
  46.  
  47.         BOLD
  48.         Prints the font in the bold format.
  49.  
  50.         UNDERLINE
  51.         Prints the font underlined.
  52.  
  53.  
  54.         EXAMPLES:
  55.  
  56.         1. To change the font to a scaled version of Seista font
  57.            which is 12 points high:
  58.  
  59.         SETFONT Seista 12 SCALE
  60.  
  61.  
  62.         2. To change the font in the current shell to a bold 
  63.            underlined version of the proportional Ruby font, 
  64.            16 points high:
  65.  
  66.         SETFONT Ruby 16 BOLD UNDERLINE PROP
  67.  
  68.  
  69.  
  70.